home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
BBS in a Box 3
/
BBS in a box - Trilogy III.iso
/
Files
/
Prog
/
A
/
10⁄92 & 11⁄92 Mailing
/
SwapMMUModeƒ
/
StripPCAddress.a
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1992-08-31
|
323 b
|
16 lines
|
[
TEXT/MPS
]
;
Print Push,Off
Include 'Traps.a'
Print Pop
;
;
StripPCAddress PROC EXPORT
MOVE.L (SP)+,D0 ; Pop return address in DO
_StripAddress ; Strip the address
MOVE.L D0,-(SP) ; Push back the return address
RTS ; That's it.
ENDPROC
End